body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #121212;
      color: #ffffff;
    }

    header {
      background-color: #1e1e1e;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #00ff88;
    }

    header h1 {
      color: #00ff88;
      margin: 0;
    }

    nav a {
      color: #00ff88;
      text-decoration: none;
      margin-left: 1.5rem;
      font-weight: bold;
    }

    .hero {
      text-align: center;
      padding: 5rem 2rem;
      background: linear-gradient(145deg, #1c1c1c, #111111);
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #00ff88;
    }

    .hero p {
      font-size: 1.2rem;
      color: #cccccc;
    }

    .projects {
      padding: 3rem 2rem;
      background-color: #181818;
    }

    .projects h3 {
      color: #00ff88;
      margin-bottom: 1rem;
    }

    .project {
      background-color: #232323;
      padding: 1.5rem;
      border-radius: 8px;
      margin-bottom: 2rem;
      border-left: 4px solid #00ff88;
    }

    .project a {
      color: #00ff88;
      text-decoration: none;
      font-weight: bold;
    }

    .contact {
      padding: 3rem 2rem;
      background-color: #1a1a1a;
    }

    .contact h3 {
      color: #00ff88;
      margin-bottom: 1rem;
    }

    .contact p {
      margin: 0.5rem 0;
      color: #cccccc;
    }

    footer {
      background-color: #1e1e1e;
      text-align: center;
      padding: 1rem;
      color: #888;
      font-size: 0.9rem;
      border-top: 2px solid #00ff88;
    }
    #loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: visible;
    opacity: 1;
    transition: opacity 2s ease-out, visibility 2s ease-out;
  }


  #loader img {
    width: 650px;
    height: 650px;
    animation: rotate 2s infinite linear;
  }
  #content {
    visibility: hidden;
    opacity: 0;
    transition: opacity 2s ease-in, visibility 2s ease-in;
  }
    body.loaded #loader {
    visibility: hidden;
    opacity: 0;
  }

  body.loaded #content {
    visibility: visible;
    opacity: 1;
  }

  /*DO slidera*/
  .mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #000000;
  font-size: 15px;
  padding: 12px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}